home *** CD-ROM | disk | FTP | other *** search
/ Aminet 49 / Aminet 49 (2002)(GTI - Schatztruhe)[!][Jun 2002].iso / Aminet / util / wb / ProcessIcon.lha / Source / Include / SDI_defines.h < prev    next >
C/C++ Source or Header  |  2002-03-04  |  3KB  |  95 lines

  1. #ifndef SDI_DEFINES_H
  2. #define SDI_DEFINES_H
  3.  
  4. /* Includeheader
  5.  
  6.     Name:        SDI_defines
  7.     Versionstring:    $VER: SDI_defines.h 1.32 (30.04.2000)
  8.     Author:        SDI
  9.     Distribution:    PD
  10.     Description:    standard defines and macros and version string
  11.  
  12.  1.17  12.06.96 : RETURN_WARN instead of RETURN_ERROR in SDI_ENDCODE
  13.  1.18  06.07.96 : End: PrintFault behind end --> allows selecting output
  14.  1.19  21.08.96 : added __SASC __AMIGADATE__ support
  15.  1.20  24.08.96 : better SAS-C support
  16.  1.21  04.09.96 : changed error with SAS date having the brackets already
  17.  1.22  18.11.96 : converted to english, C++ comments to C ones
  18.  1.23  02.01.97 : corrected some stuff
  19.  1.24  17.03.97 : removed GetChar and other obsolete defines
  20.  1.25  08.10.97 : renamed defines, removed some defines
  21.  1.26  10.02.98 : made version string const
  22.  1.27  20.02.98 : added compiler independence stuff
  23.  1.28  25.06.98 : compiler independent stuff moved to SDI_compiler.h
  24.  1.29  01.09.98 : fixes for StormC Demo
  25.  1.30  06.05.99 : changed AUTHOR string
  26.  1.31  17.11.99 : date stuff now defaults to __DATE__ for unknown compiler
  27.  1.32  30.04.00 : excluded SDI_version.h
  28. */
  29.  
  30. #include <exec/types.h>
  31.  
  32. /* ========================= useable defines ============================ */
  33.  
  34. /*
  35.   SDI_ENDCODE        turn on generation of End function
  36.   SDI_ENDCODE_NOCTRLC    use End generation without CTRL_C check
  37. */
  38.  
  39. /* ======================= no need for <stdlib.h> ======================= */
  40.  
  41. #ifdef __cplusplus
  42.   extern "C"
  43. #endif
  44. extern void exit(int);
  45.  
  46. /* ============================ other macros ============================ */
  47.  
  48. /* <proto/exec.h>, <dos/dos.h> */
  49.  
  50. #define CTRL_C        (SetSignal(0L,0L) & SIGBREAKF_CTRL_C)
  51.  
  52. /* ================================= SAS C ============================== */
  53.  
  54. #define TestOS if(DOSBase->dl_lib.lib_Version < DosVersion)    \
  55.              exit(RETURN_FAIL)
  56.  
  57. /* A word about variable DosVersion: In my startup code for MaxonC++ I
  58. include use OpenLibrary("dos.library", DosVersion) instead of standard
  59. OpenLibrary("dos.library",0) call. If no DosVersion is given, this
  60. variable defaults to 33, else you can give the value by creating a global
  61. variable ULONG DosVersion = 37;. The program does not start, when the
  62. required DOS is not available. (Better then others, which crash) */
  63.  
  64. /* ===================== version string and EndCode ===================== */
  65.  
  66.  
  67. #ifdef NAME
  68.   #include "SDI_version.h"
  69. #endif /* NAME */
  70.  
  71. #if defined(SDI_ENDCODE) || defined(SDI_ENDCODE_NOCTRLC)
  72.   #include "SDI_compiler.h"
  73.  
  74.   INLINE void end(void);
  75.  
  76.   void End(UBYTE err)
  77.   {
  78.     #ifndef SDI_ENDCODE_NOCTRLC
  79.     if(CTRL_C)
  80.     {
  81.       err = RETURN_WARN;
  82.       SetIoErr(ERROR_BREAK);
  83.     }
  84.     #endif
  85.  
  86.     end();
  87.  
  88.     if(err)        PrintFault(IoErr(), 0);
  89.     exit(err);
  90.   }
  91. #endif /* SDI_ENDCODE && SDI_ENDCODE_NOCTRLC */
  92.  
  93. #endif /* SDI_DEFINES_H */
  94.  
  95.